home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / v cisle / htttrack / httrack-3.41-3.exe / {app} / src / htswizard.h < prev    next >
C/C++ Source or Header  |  2006-05-01  |  2KB  |  72 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31. /* ------------------------------------------------------------ */
  32. /* File: httrack.c subroutines:                                 */
  33. /*       wizard system (accept/refuse links)                    */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37.  
  38. #ifndef HTSWIZARD_DEFH
  39. #define HTSWIZARD_DEFH 
  40.  
  41. /* Library internal definictions */
  42. #ifdef HTS_INTERNAL_BYTECODE
  43.  
  44. #include "htsglobal.h"
  45.  
  46. /* Forward definitions */
  47. #ifndef HTS_DEF_FWSTRUCT_httrackp
  48. #define HTS_DEF_FWSTRUCT_httrackp
  49. typedef struct httrackp httrackp;
  50. #endif
  51. #ifndef HTS_DEF_FWSTRUCT_lien_url
  52. #define HTS_DEF_FWSTRUCT_lien_url
  53. typedef struct lien_url lien_url;
  54. #endif
  55.  
  56. int hts_acceptlink(httrackp* opt,
  57.                    int ptr,int lien_tot,lien_url** liens,
  58.                    char* adr,char* fil,
  59.                    char* tag, char* attribute,
  60.                    int* set_prio_to_0,
  61.                    int* just_test_it);
  62. int hts_testlinksize(httrackp* opt,
  63.                      char* adr,char* fil,
  64.                      LLint size);
  65. int hts_acceptmime(httrackp* opt,
  66.                    int ptr,int lien_tot,lien_url** liens,
  67.                    char* adr,char* fil,
  68.                    char* mime);
  69. #endif
  70.  
  71. #endif
  72.